home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / Libraries / DCLAP 6d / dclap6d / Dmake / unix / unix-sgi / makecopy.sgi next >
Encoding:
Text File  |  1996-07-05  |  952 b   |  40 lines  |  [TEXT/R*ch]

  1. #    makecopy for dclap C++ library routines
  2. # this copies source to build/ and include/ folders
  3. #.....
  4.  
  5. SUFFIXLCL = sgi
  6.  
  7. ## All things to make
  8. ##
  9. all : copy
  10.  
  11. copy :
  12.     - mkdir ../include
  13.     - mkdir ../lib
  14.     - chmod +w ../include/*
  15.     - chmod +w *
  16.     cp ../corelib/*.h ../include
  17.     cp ../corelib/ncbilcl.$(SUFFIXLCL) ../include/ncbilcl.h
  18.     cp ../corelib/*.c .
  19.     - chmod +w *.c
  20. #    cp ../corelib/ncbimain.$(SUFFIXENV) ncbimain.c
  21. #    cp ../corelib/ncbienv.$(SUFFIXENV) ncbienv.c
  22.     cp ../vibrant/*.h ../include
  23.     cp ../vibrant/*.c .
  24.     cp ../DClap/*.h ../include
  25.     cp ../DNet/*.h ../include
  26.     cp ../Drtf/*.h ../include
  27.     cp ../DBio/*.h ../include
  28.     cp ../network/nsclilib/*.h ../include
  29.     cp ../DClap/*.cpp ../DClap/*.c .
  30.     cp ../DNet/*.cpp ../DNet/*.c .
  31.     cp ../Drtf/*.cpp ../Drtf/*.c .
  32.     cp ../DBio/*.cpp ../DBio/*.c .
  33.     cp ../DApp/*.* .
  34.     echo "Renaming build/*.cpp files to build/*.c++ for silly SGI CC"
  35.     - cp ../Dmake/rename .
  36.     ./rename .cpp .c++
  37.     chmod +w ../include/*
  38.     chmod +w *
  39.  
  40.